container/list.Element.next (field)
21 uses
container/list (current package)
list.go#L21: next, prev *Element
list.go#L32: if p := e.next; e.list != nil && p != &e.list.root {
list.go#L55: l.root.next = &l.root
list.go#L73: return l.root.next
list.go#L86: if l.root.next == nil {
list.go#L94: e.next = at.next
list.go#L95: e.prev.next = e
list.go#L96: e.next.prev = e
list.go#L109: e.prev.next = e.next
list.go#L110: e.next.prev = e.prev
list.go#L111: e.next = nil // avoid memory leaks
list.go#L122: e.prev.next = e.next
list.go#L123: e.next.prev = e.prev
list.go#L126: e.next = at.next
list.go#L127: e.prev.next = e
list.go#L128: e.next.prev = e
list.go#L181: if e.list != l || l.root.next == e {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |